#!/bin/bash
# The below incantation sets SRC_ROOT to be the canonicalized directory of this script
SRC_ROOT=$(
cd -P -- "$(dirname -- "$0")" &&
printf '%s\n' "$(pwd -P)/$(basename -- "$0")"
) || exit 1
SRC_ROOT=`dirname "$SRC_ROOT"`
# Move up into the actual source root directory
SRC_ROOT="$SRC_ROOT/../"
# This file exists to make running the tests the same as running the examples produced
# by the installer.
$SRC_ROOT/target/release/javamop/javamop/bin/javamopagent $@
